home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 52
/
Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso
/
Aminet
/
comm
/
irc
/
epic4-mos.lha
/
share
/
epic
/
script
/
dcc_timeout
< prev
next >
Wrap
Text File
|
2002-09-18
|
465b
|
26 lines
@ dcc.inbound.threshhold = 0
@ dcc.outbound.threshhold = 0
on #-timer -333 *
{
^stack push on dcc_list
^on dcc_list * #
if (dcc.inbound.threshold) {
^on -dcc_list "* * * Offered *" {
if (time() - [$4] > dcc.inbound.threshhold)
{ dcc close $0 $2 }
}
}
if (dcc.outbound.threshold) {
^on -dcc_list "* * * Waiting *" {
if (time() - [$4] > dcc.outbound.threshhold)
{ dcc close $0 $2 }
}
}
^//dcc list
^stack pop on dcc_list
}
#hop'98